home *** CD-ROM | disk | FTP | other *** search
/ Game Cracker (Expanded Edition) / Game Cracker (Expanded Edition).iso / cracks / VISG.ZIP / LINGO.INI < prev    next >
Text File  |  1997-11-09  |  589b  |  15 lines

  1. -- Loaded are:
  2. -- FILEIO.DLL, for file input and output
  3.  
  4. on startup
  5. --  put "Now loading LINGO.INI"
  6.     put "This computer is running in "&& the colorDepth &"-bit color depth."
  7. --  set the centerStage to TRUE
  8.     openxlib "fileio"
  9.     -- Following line prevents crashes on Windows systems when using math functions 
  10.     -- such as power or log and passing bogus or extremely large/small values.
  11.     -- Invoking the float->string conversion code  with a valid value prevents
  12.     -- future crashes in this routine.  drs  1mar96 
  13.     if string(0.0)="a" then nothing
  14. end startup
  15.